home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 8_7.lha / 8_7 / makefile < prev    next >
Makefile  |  1993-08-08  |  347b  |  22 lines

  1. C= CC -I. -I../8.6dir -I../../CC
  2. FLAGS=
  3.  
  4. ll: tst
  5.  
  6. IR= ../8.6dir
  7.  
  8. st: tst.o $(DIR)/in.o $(DIR)/out.o $(DIR)/main.o
  9. $(CC) tst.o $(DIR)/in.o $(DIR)/out.o $(DIR)/main.o -o tst
  10.  
  11. st.o: tst.c 8_7_init.c
  12. $(CC) $(CFLAGS) -c tst.c
  13.  
  14. MP= tst.cmp
  15. UT= tst.out
  16.  
  17. st.out: tst tst.in ; tst < tst.in > tst.out
  18.  
  19. est: $(CMP) $(OUT)
  20. cmp tst.out tst.cmp
  21. @echo test done
  22.